/* Global font */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: white;
}

/* Full-width image */
.hero-image {
    width: 100%;
    height: auto;
}

/* Uppercase h1 */
h1 {
    color: rgb(182, 33, 219);
    text-transform: uppercase;
}

/* h2 style */
h2 {
    color: #a75454;
}

/* Body text */
p {
    max-width: 600px;
    margin: 20px auto;
    text-align: left;
}

/* Button styling */
button {
    background-color: #99ccff;
    color: blue;
    padding: 5px 30px; /* 30px left and right */
    border: 1px solid black; 
    cursor: pointer;
}

/* Button hover */
button:hover {
    background-color: #e2eeff;
    color: #a75454;
}